From 515db7a43abd0a872878c7408c1eb136e299d9fa Mon Sep 17 00:00:00 2001 From: Alastair Tse Date: Fri, 1 Dec 2006 10:47:57 +0000 Subject: [PATCH] [XEND] Fix missing serial and localtime args in device model for HVM Signed-off-by: Alastair Tse --- tools/python/xen/xend/XendConfig.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index 3d79c657c9..3bb0ba4cd9 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -186,19 +186,21 @@ LEGACY_IMAGE_HVM_CFG = [ ('pae', int), ('apic', int), ('acpi', int), - ('serial', str), ] LEGACY_IMAGE_HVM_DEVICES_CFG = [ + ('acpi', int), ('boot', str), ('fda', str), ('fdb', str), - ('soundhw', str), ('isa', str), - ('vcpus', int), - ('acpi', int), + ('keymap', str), + ('localtime', str), + ('serial', str), + ('soundhw', str), ('usb', str), - ('usbdevice', str), + ('usbdevice', str), + ('vcpus', int), ] -- 2.30.2